Elasticsearch インストール
注意点
ディスカバリの仕様では AWS の Security Group を元にしているのがある
事前にディスカバリ仕様を確認しておくこと
install
RPM
import PGP Key
code:shell
$ rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
import RPM Repo
vim /etc/yum.repos.d/elasticsearch.repo
code:conf
elasticsearch-7.x
name=Elasticsearch repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=1
autorefresh=1
type=rpm-md
install
code:shell
# yum install elasticsearch
start
code:shell
# systemctl start elasticsearch